/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.0.1                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      decomposeParDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

numberOfSubdomains 2; //this number signifies the number of processors u r going to use. in this case it is 4. U can make it 8 or 6 depending on the system capability.

method          scotch;

simpleCoeffs
{
    n               ( 2 1 1 ); //this should give the number 4, when its multiplied. (2*2*1)=4. E.g. If u want to run in 8 proc make it as (4 2 1) and for 6 make it as (3 2 1)
    delta           0.001;
}

//from here, dont change anything. keep the same. 
hierarchicalCoeffs   
{
    n               ( 1 1 1 );
    delta           0.001;
    order           xyz;
}

scotchCoeffs
{
}

manualCoeffs
{
    dataFile        "";
}

distributed     no;

roots           ( );


// ************************************************************************* //
